home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / update-notifier / notify-reboot-required
Text File  |  2009-10-15  |  430b  |  17 lines

  1. #!/bin/sh
  2.  
  3. # we do not include ". gettext.sh" here because:
  4. # a) it breaks if its not available
  5. # b) the string we have here does not need it (because it has no vars)
  6. eval_gettext() {
  7.     echo $(gettext "$1")
  8. }
  9. export TEXTDOMAIN=update-notifier
  10. export TEXTDOMAINDIR=/usr/share/locale
  11.  
  12.  
  13. # Wake the applet up
  14. if mountpoint -q /var/run; then
  15.     echo "*** $(eval_gettext "System restart required") ***" > /var/run/reboot-required
  16. fi
  17.